home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #5 / Amiga Plus CD - 2000 - No. 5.iso / Tools / Dev / fpc / source / docs / refex / ex17.pp < prev    next >
Encoding:
Text File  |  2000-01-01  |  202 b   |  12 lines

  1. Program Example17;
  2.  
  3. { Program to demonstrate the DSeg function. }
  4.  
  5. Var
  6.   W : Word;
  7.  
  8. begin
  9.   W:=DSeg; {W:=0, This function is provided for compatibility,
  10.                   FPC is a 32 bit comiler.}
  11. end.
  12.